func math/bits.Mul
9 uses
math/bits (current package)
bits.go#L445: func Mul(x, y uint) (hi, lo uint) {
math/big
arith.go#L45: hi, lo := bits.Mul(uint(x), uint(y))
arith.go#L51: hi, lo := bits.Mul(uint(x), uint(y))
arith.go#L231: t1, t0 := bits.Mul(uint(m), uint(x1))
arith.go#L238: dq1, dq0 := bits.Mul(d, qq)
bytes
bytes.go#L654: hi, lo := bits.Mul(uint(len(b)), uint(count))
crypto/internal/fips140/bigmod
nat.go#L904: hi, lo := bits.Mul(x[i], y)
slices
slices.go#L508: hi, lo := bits.Mul(uint(len(x)), uint(count))
strings
strings.go#L626: hi, lo := bits.Mul(uint(len(s)), uint(count))